Linux CentOS 7修改SSH远程默认22端口

修改端口之前先看防火墙是否开启,别改了端口进不去服务器。

检查防火墙状态

systemctl status firewalld

设置开机禁用防火墙

systemctl disable firewalld.service

关闭防火墙

systemctl stop firewalld

如果使用宝塔面板,直接在宝塔面板就可以修改,省时省力。

FinalShell可以直接下载回本地进行修改,也很方便。

控制SSH访问端口的文件为 /etc/ssh/sshd_config

因此,编辑SSH配置文件sshd_config

vi /etc/ssh/sshd_config

找到#Port 22,将其前面的#去掉,将22改为其他端口

修改保存后,重启SSH服务:

systemctl restart sshd.service

至少在确定新端口可用之前,不要关闭当前的远程连接。

查看状态:

systemctl status sshd.service

启动服务:

systemctl start sshd.service

开机自启:

systemctl enable sshd.service
正文完
 0